int bpl;
register guint8 data;
guint8 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
d (printf ("1 bits/pixel\n"));
int bpl;
register guint8 data;
guint8 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
guint32 remap[2];
d (printf ("1 bits/pixel\n"));
int bpl;
guint32 mask;
register guint32 data;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
register guint8 *s;
register guint8 *o;
guint32 remap[256];
register guint8 *s; /* read 2 pixels at once */
register guint32 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
register guint8 *s; /* read 2 pixels at once */
#endif
register guint16 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
register guint32 *s; /* read 2 pixels at once */
#endif
register guint16 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
#endif
register guint32 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
#endif
register guint32 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
register guint8 *s; /* read 2 pixels at once */
#endif
register guint16 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
register guint32 *s; /* read 2 pixels at once */
#endif
register guint16 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
#endif
register guint32 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
#endif
register guint32 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
guint8 *s; /* for byte order swapping */
guint8 *o;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
width = image->width;
height = image->height;
int width, height;
int bpl;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
guint8 *o, *s;
width = image->width;
int width, height;
int bpl;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
#ifdef LITTLE
guint32 *o;
guint32 *s;
int width, height;
int bpl;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
guint8 *s;
guint8 *o;
int xx, yy;
int width, height;
int bpl;
- guint8 *srow = image->data, *orow = pixels;
+ guint8 *srow = (guint8 *)image->data, *orow = pixels;
guint8 *o;
guint32 pixel;
Visual *v;
while (w != 0) {
Window parent, root, *children;
- int nchildren;
+ guint nchildren;
XGetWindowAttributes (gdk_pixbuf_dpy, w, &wa);
if (wa.map_state != IsViewable)
int dest_x, int dest_y,
int width, int height)
{
- int src_width, src_height;
+ guint src_width, src_height;
XImage *image;
int rowstride, bpp, alpha;
XWindowAttributes wa;
src_height = wa.height;
} else {
Window root;
- int tx, ty, bwidth, depth;
+ int tx, ty;
+ guint bwidth, depth;
XGetGeometry (gdk_pixbuf_dpy, src, &root, &tx, &ty,
&src_width, &src_height, &bwidth, &depth);
}